-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement cuda::mr::pinned_memory_resource
#1580
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
miscco
added
feature request
New feature or request.
libcu++
For all items related to libcu++
labels
Apr 2, 2024
copy-pr-bot
bot
force-pushed
the
pull-request/1579
branch
from
April 2, 2024 19:16
91c71c2
to
edaddef
Compare
miscco
force-pushed
the
cuda_pinned_memory_resource
branch
from
April 2, 2024 19:17
9a209b7
to
e685c62
Compare
copy-pr-bot
bot
force-pushed
the
pull-request/1579
branch
from
April 3, 2024 10:23
edaddef
to
975cfde
Compare
miscco
force-pushed
the
cuda_pinned_memory_resource
branch
from
April 3, 2024 10:24
e685c62
to
e3d287a
Compare
copy-pr-bot
bot
force-pushed
the
pull-request/1579
branch
from
April 3, 2024 15:30
975cfde
to
93dab9c
Compare
miscco
force-pushed
the
cuda_pinned_memory_resource
branch
from
April 3, 2024 15:30
e3d287a
to
1168ea3
Compare
harrism
approved these changes
Apr 4, 2024
griwes
approved these changes
Apr 5, 2024
Wow, not a force push! Yay! |
copy-pr-bot
bot
force-pushed
the
pull-request/1579
branch
from
April 11, 2024 09:26
b5563d9
to
fa73fae
Compare
miscco
force-pushed
the
cuda_pinned_memory_resource
branch
from
April 11, 2024 09:26
838e45b
to
c42ff8f
Compare
copy-pr-bot
bot
force-pushed
the
pull-request/1579
branch
from
April 12, 2024 06:18
fa73fae
to
a79affb
Compare
miscco
force-pushed
the
cuda_pinned_memory_resource
branch
from
April 12, 2024 06:18
c42ff8f
to
1446af4
Compare
miscco
force-pushed
the
cuda_pinned_memory_resource
branch
2 times, most recently
from
April 12, 2024 07:04
cfb3162
to
1461043
Compare
Fixes Implement a memory_resource using cudaMallocHost and cudaFreeHost NVIDIA#1516
miscco
force-pushed
the
cuda_pinned_memory_resource
branch
from
April 12, 2024 12:05
1461043
to
a058d90
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This implements a memory resource allocating host pinned memory
Fixes Implement a memory_resource using cudaMallocHost and cudaFreeHost #1516
Co-authored-by: Mark Harris <[email protected]
This is a respin of #1557